home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20030409-20031118 / 000408_fdc@columbia.edu_Tue Nov 11 12:56:15 2003.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Path: newsmaster.cc.columbia.edu!not-for-mail
  2. From: Frank da Cruz <fdc@columbia.edu>
  3. Newsgroups: comp.protocols.kermit.misc
  4. Subject: Re: Problem with Kermit spawned from Expect script sending files
  5. Date: 11 Nov 2003 16:14:48 GMT
  6. Organization: Columbia University
  7. Lines: 36
  8. Message-ID: <slrnbr22no.dhj.fdc@sesame.cc.columbia.edu>
  9. References: <f0bb0f39.0311061216.1ba040a0@posting.google.com> <slrnbqlcid.ooo.fdc@sesame.cc.columbia.edu> <f0bb0f39.0311070527.6ce76ffc@posting.google.com> <slrnbqnbfm.380.fdc@sesame.cc.columbia.edu> <f0bb0f39.0311070946.62574f98@posting.google.com> <slrnbqns98.69r.fdc@sesame.cc.columbia.edu> <slrnbqnsgg.856.fdc@sesame.cc.columbia.edu> <f0bb0f39.0311100537.7a4d4faf@posting.google.com> <3fafafd0$1@yorrell.saard.net> <f0bb0f39.0311110437.62628a03@posting.google.com>
  10. Reply-To: fdc@columbia.edu
  11. NNTP-Posting-Host: sesame.cc.columbia.edu
  12. X-Trace: newsmaster.cc.columbia.edu 1068567288 9267 128.59.59.56 (11 Nov 2003 16:14:48 GMT)
  13. X-Complaints-To: postmaster@columbia.edu
  14. NNTP-Posting-Date: 11 Nov 2003 16:14:48 GMT
  15. User-Agent: slrn/0.9.7.4 (SunOS)
  16. Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:14664
  17.  
  18. In article <f0bb0f39.0311110437.62628a03@posting.google.com>,
  19. newexpectuser wrote:
  20. : Arthur Marsh <arthur.marsh@internode.on.net>
  21. : wrote in message news:<3fafafd0$1@yorrell.saard.net>...
  22. :> newexpectuser wrote:
  23. :> try using REMOTE DIRECTORY or its shortened form, RDIR
  24. :
  25. : I tried the RDIR and then a ls command to make sure i was in the
  26. : remote directory, but I got the local directory listing, unless my ls
  27. : command only shows the local directory ?..I am also running this first
  28. : from a command line in Unix using ./script.sh.
  29. :
  30. RDIR, LS, and DIRECTORY are three different commands.  Each one does a
  31. different thing.  Only RDIR requests a directory listing from the remote
  32. server.
  33.  
  34. In a file transfer and management system such as Kermit (or, for that
  35. matter, FTP) there needs to be a way to refer to both local and remote
  36. files.  By default, unprefixed commands such as DELETE, DIRECTORY, RENAME,
  37. etc, refer to local files.  If you prefix them with the word REMOTE, or
  38. use the R-shortcuts (RDEL, RDIR, RREN, etc), they apply to remote files.
  39.  
  40. For completeness and symmetry, there are also L-shortcuts to force reference
  41. to local files: LDEL, LDIR, LREN, etc.
  42.  
  43. You can even have Kermit change the default for unprefixed commands; for
  44. example, to make it act like FTP:
  45.  
  46.   SET LOCUS REMOTE
  47.  
  48. Then unprefixed file management commands refer to remote files.  For more
  49. about this, see:
  50.  
  51.   http://www.columbia.edu/kermit/ckermit80.html#x3.4
  52.  
  53. - Frank
  54.